diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2019-05-07 01:50:22 +0200 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2019-05-07 08:41:51 +0200 |
commit | ddd3f845089062716d7fc64e5a5e4e413363df91 (patch) | |
tree | a8557606e92456e4f71148d3c6668c4c349e376e /pkgs/webapps/mediagoblin/plugins | |
parent | 7da817e32f5e285f5fe09726f6031d8c6d4c74ea (diff) | |
download | Nix-ddd3f845089062716d7fc64e5a5e4e413363df91.tar.gz Nix-ddd3f845089062716d7fc64e5a5e4e413363df91.tar.zst Nix-ddd3f845089062716d7fc64e5a5e4e413363df91.zip |
Move mediagoblin to pkgs
Diffstat (limited to 'pkgs/webapps/mediagoblin/plugins')
-rw-r--r-- | pkgs/webapps/mediagoblin/plugins/basicsearch/default.nix | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/webapps/mediagoblin/plugins/basicsearch/default.nix b/pkgs/webapps/mediagoblin/plugins/basicsearch/default.nix new file mode 100644 index 0000000..16be613 --- /dev/null +++ b/pkgs/webapps/mediagoblin/plugins/basicsearch/default.nix | |||
@@ -0,0 +1,18 @@ | |||
1 | { stdenv, fetchFromGitHub }: | ||
2 | stdenv.mkDerivation rec { | ||
3 | name = "mediagoblin-plugin-basicsearch-${version}"; | ||
4 | version = "ba0a154-master"; | ||
5 | src = fetchFromGitHub { | ||
6 | owner = "ayleph"; | ||
7 | repo = "mediagoblin-basicsearch"; | ||
8 | rev = "ba0a1547bd24ebaf363227fe17644d38c6ce8a6b"; | ||
9 | sha256 = "0d4r7xkf4gxmgaxlb264l44xbanis77g49frwfhfzsflxmdwgncy"; | ||
10 | }; | ||
11 | phases = "unpackPhase installPhase"; | ||
12 | installPhase = '' | ||
13 | cp -R ./basicsearch $out | ||
14 | ''; | ||
15 | passthru = { | ||
16 | pluginName = "basicsearch"; | ||
17 | }; | ||
18 | } | ||