diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2021-08-25 23:49:34 +0200 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2021-09-30 00:40:56 +0200 |
commit | 56cfbfb0d8534122d1eaf45ef945d8010f831133 (patch) | |
tree | 2707ea14d154a2d6e20e23b73a5462a7448779d3 /pkgs/bitlbee-mastodon | |
parent | 660cb973260f62551294f73e0811b37fc10fd467 (diff) | |
download | Nix-56cfbfb0d8534122d1eaf45ef945d8010f831133.tar.gz Nix-56cfbfb0d8534122d1eaf45ef945d8010f831133.tar.zst Nix-56cfbfb0d8534122d1eaf45ef945d8010f831133.zip |
Move packages to flakes
Diffstat (limited to 'pkgs/bitlbee-mastodon')
-rw-r--r-- | pkgs/bitlbee-mastodon/default.nix | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/pkgs/bitlbee-mastodon/default.nix b/pkgs/bitlbee-mastodon/default.nix deleted file mode 100644 index 385db75..0000000 --- a/pkgs/bitlbee-mastodon/default.nix +++ /dev/null | |||
@@ -1,30 +0,0 @@ | |||
1 | { stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, bitlbee, glib, lib }: | ||
2 | stdenv.mkDerivation rec { | ||
3 | name = "bitlbee-mastodon-${version}"; | ||
4 | version = "v1.4.4"; | ||
5 | |||
6 | src = fetchFromGitHub { | ||
7 | rev = version; | ||
8 | owner = "kensanata"; | ||
9 | repo = "bitlbee-mastodon"; | ||
10 | sha256 = "0a8196pyr6bjnqg82zn7jdhiv7xsg4npbpzalla1i2h99j30q8pk"; | ||
11 | }; | ||
12 | |||
13 | nativeBuildInputs = [ autoreconfHook pkgconfig ]; | ||
14 | buildInputs = [ bitlbee glib ]; | ||
15 | |||
16 | preConfigure = '' | ||
17 | export BITLBEE_PLUGINDIR=$out/lib/bitlbee | ||
18 | export BITLBEE_DATADIR=$out/share/bitlbee | ||
19 | chmod +x autogen.sh | ||
20 | ./autogen.sh | ||
21 | ''; | ||
22 | |||
23 | meta = { | ||
24 | description = "Bitlbee plugin for Mastodon"; | ||
25 | |||
26 | homepage = https://github.com/kensanata/bitlbee-mastodon; | ||
27 | license = lib.licenses.gpl2Plus; | ||
28 | platforms = lib.platforms.linux; | ||
29 | }; | ||
30 | } | ||