diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2018-12-13 21:25:24 +0100 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2019-05-24 01:40:13 +0200 |
commit | 24fd1fe6c62b7a9fc347794fde043285da272f5c (patch) | |
tree | 65557bf1d241ca389b619dbd24d18d51932ee030 /pkgs/webapps/mediagoblin/plugins/basicsearch | |
download | NUR-24fd1fe6c62b7a9fc347794fde043285da272f5c.tar.gz NUR-24fd1fe6c62b7a9fc347794fde043285da272f5c.tar.zst NUR-24fd1fe6c62b7a9fc347794fde043285da272f5c.zip |
Initial commit published for NUR
Diffstat (limited to 'pkgs/webapps/mediagoblin/plugins/basicsearch')
-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 00000000..16be613f --- /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 | } | ||